go/types.unifier.handles (field)

12 uses

	go/types (current package)
		unify.go#L82: 	handles                  map[*TypeParam]*Type
		unify.go#L155: 	tparams := make(typeParamsById, len(u.handles))
		unify.go#L157: 	for tpar := range u.handles {
		unify.go#L191: 	switch hx, hy := u.handles[x], u.handles[y]; {
		unify.go#L215: 		if _, found := u.handles[x]; found {
		unify.go#L225: 	hx := u.handles[x]
		unify.go#L227: 	for y, hy := range u.handles {
		unify.go#L229: 			u.handles[y] = h
		unify.go#L236: 	return *u.handles[x]
		unify.go#L246: 	*u.handles[x] = t
		unify.go#L252: 	for _, h := range u.handles {